#!/bin/bash

# Get current path
mypath="`pwd`"

for filename in "$@"
	do
		# Create backup
		cp "$mypath/$filename" "$mypath/$filename~"
done
